GetYear Function

public function GetYear(time) result(year)

Gets the year of the datetime represented by this instance

Arguments

Type IntentOptional Attributes Name
type(DateTime), intent(in) :: time

Return Value integer(kind=short)


Source Code

FUNCTION  GetYear &
!
(time) &
!
RESULT (year)

IMPLICIT NONE

! Arguments with intent(in):
TYPE (DateTime), INTENT(IN) :: time

! Local variables:
INTEGER (KIND = short) :: year

!------------end of declaration------------------------------------------------

year = time % year

END FUNCTION GetYear